home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 29
/
Volume 29 - JOGO DISK .iso
/
Games
/
jumping_jelly_beans.swf
/
scripts
/
DefineSprite_638
/
frame_1
/
DoAction.as
Wrap
Text File
|
2006-11-29
|
458b
|
23 lines
MovieClip.prototype.insjump = function(no)
{
var t = this;
t.yland = t._y;
t.gotoAndstop("jump");
t.ys = r.jumppower[no];
t._y += t.ys;
t.onEnterFrame = function()
{
t._y += t.ys;
t.ys += r.grav[no];
if(t._y >= t.yland)
{
t._y = t.yland;
t.gotoAndstop("run");
delete t.onEnterFrame;
}
};
t.stop();
};
p1.tipenet = p2.tipenet = p3.tipenet = 1;
now = 1;